﻿

系统环境要求：PHP>=7.1 + MySQL5.6

上传到网站根目录解压后访问域名进行安装!

Nginx伪静态设置:

location / {
 if (!-e $request_filename) {
   rewrite ^/(.[a-zA-Z0-9\-\_]+).html$ /index.php?mod=$1 last;
 }
 rewrite ^/pay/(.*)$ /pay.php?s=$1 last;
}
location ^~ /plugins {
  deny all;
}
location ^~ /includes {
  deny all;
}